Fix pep-ppp-prod Java feature: switch JDK distro from ms to tem - #475
Closed
applegath-verily wants to merge 27 commits into
Closed
Fix pep-ppp-prod Java feature: switch JDK distro from ms to tem#475applegath-verily wants to merge 27 commits into
applegath-verily wants to merge 27 commits into
Conversation
…hat compatible version
…M and PyTorch pull their CUDA 12.8 compatible wheels together, ensuring the compiled vLLM extensions match the CUDA runtime
Based on the vllm/ollama E4B template, configured for the larger Gemma 4 26B MoE model (4B active params, 18GB) targeting A100 GPUs. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Moved start-ollama.sh into postStartCommand so the model auto-starts after VM stop/start cycles. Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
… 8080, login default true) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
…eatures) Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
Co-Authored-By: Claude Opus 4.6 (1M context) <noreply@anthropic.com>
The Java (via SDKMAN!) feature defaulted to the Microsoft Build of
OpenJDK (jdkDistro "ms"). SDKMAN no longer resolves a bare version
"17" for the "ms" distro (Microsoft has wound down that build), so
the feature install failed with "Version 17 not found", aborting the
devcontainer build on every prod instance.
Pin jdkDistro to Temurin ("tem"), the maintained Eclipse Adoptium
LTS build, which resolves version 17 reliably.
Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Problem
The
pep-ppp-proddevcontainer build fails during startup on every prod instance, so the app container is never produced and the app never reaches RUNNING. Observed across all three prod recreation attempts (06/10 → 06/11 → 08/25) in workspaceppp-prepep-consolidated-ws.Startup log excerpt:
Root cause
The Java (via SDKMAN!) feature was pinned to
version: "17"with the defaultjdkDistro: "ms"(Microsoft Build of OpenJDK). SDKMAN no longer resolves a bare17for themsdistro (Microsoft has wound down that build), so the feature install exits 1,docker-compose build appfails, and the devcontainer build aborts. Resource metrics during the build were clean (no OOM/disk pressure), and WSM/control-plane provisioned the VM successfully every time — the failure is entirely in the in-VM devcontainer build step.Fix
Pin
jdkDistroto Temurin (tem), the maintained Eclipse Adoptium LTS build, which resolves version 17 reliably."ghcr.io/devcontainers/features/java:1.6.3": { - "version": "17" + "version": "17", + "jdkDistro": "tem" },🤖 Generated with Claude Code